3ef505eb-9a67-488b-b9a7-13810fab406b 1.0 2016 You are in a room. The only exit appears to be to the north. if (not GetBoolean(door, "kicked")) { msg ("It's a large, but old iron door.") } else { msg ("This door used to defiantly impede your path but now that you kicked it in, it is just a heap of metal.") } false if (not GetBoolean(door, "kicked")) { } else { msg ("You have already kicked the door in. All you need to do now is walk through the threshold into the other room.") } if (not GetBoolean(door, "kicked")) { msg ("You push with all your might and the door creaks a little but does not open. You should get all kung-fu on it!") } else { msg ("There is no need to push it now that you have kicked it in!") } if (not GetBoolean(door, "kicked")) { msg ("It looks pretty formidable. Are you sure you want to try and kick this door in? ") get input { switch (LCase(result)) { case ("yes","yeah","yep","yea","y") { if (not GetBoolean(door, "kicked")) { msg ("You pull off a flying scissor kung-fu kick and the door crumbles inward! You may now pass.") SetObjectFlagOn (door, "kicked") } else { msg ("There is no need to kick it again, Pele.") } } case ("no","nope","nay","n","nah") { msg ("You decide not to kick the door. Chicken.") } default { msg ("You should have answered the question. Now you have to type 'kick door' again!") } } } } else { msg ("You kick the already kicked door again and just end up hurting your toe. That was WAY less impressive than the first go-around.") } You try to open the door but it seems stuck in place. The door is not really closable. kick kick "You can't kick " + object.article + "."